home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / platinum_ftp.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  81 lines

  1. #
  2. # This script was written by Douglas Minderhout <dminderhout@layer3com.com>
  3. # This script is based on a previous script written by Renaud Deraison <deraison@cvs.nessus.org>
  4. #
  5. # Thanks to: H D Moore
  6. #
  7. # See the Nessus Scripts License for details
  8. #
  9. # Ref: http://www.securiteam.com/windowsntfocus/5DP0D0U8UC.html
  10. #
  11. # Ref: 
  12. # Message-ID: <1043650912.3e34d960788ac@webmail.web-sale.dk>
  13. # Date: Mon, 27 Jan 2003 08:01:52 +0100
  14. # Subject: [VulnWatch] Multiple vulnerabilities found in PlatinumFTPserver V1.0.7
  15.  
  16. if(description){
  17.  script_id(11200);
  18.  script_version ("$Revision: 1.3 $");
  19.  
  20.  name["english"] = "Platinum FTP Server";
  21.  
  22.  script_name(english:name["english"]);
  23.          
  24.  desc["english"] = "
  25. Platinum FTP server for Win32 has several vulnerabilities in 
  26. the way it checks the format of command strings passed to it. 
  27. This leads to the following vulnerabilities in the server:
  28.  
  29. The 'dir' command can be used to examine the filesystem of the machine and
  30. gather further information about the host by using relative directory listings 
  31. (I.E. '../../../' or '\..\..\..').
  32.  
  33. The 'delete' command can be used to delete any file on the server that the
  34. Platinum FTP server has permissions to.
  35.  
  36. Issuing the command  'cd @/..@/..' will cause the 
  37. Platinum FTP server to crash and consume all available CPU time on 
  38. the server.
  39.  
  40. *** Warning : Nessus solely relied on the banner of this server, so
  41. *** this may be a false positive
  42.         
  43.  
  44. Solution : see http://www.platinumftp.com/platinumftpserver.php
  45. Risk factor : High";
  46.          
  47.  script_description(english:desc["english"]);
  48.             
  49.  
  50.  script_summary(english:"Checks if the remote ftp server is a vulnerable version of Platinum FTP");
  51.  
  52.  script_category(ACT_GATHER_INFO);
  53.  script_family(english:"FTP");
  54.  script_copyright(english:"This script is Copyright (C) 2003 Douglas Minderhout");
  55.           
  56.  script_dependencies("find_service.nes");
  57.  script_require_ports("Services/ftp", 21);
  58.  exit(0);
  59. }
  60.  
  61. #
  62. # The script code starts here : 
  63. #
  64.  
  65. include("ftp_func.inc");
  66.  
  67. port = get_kb_item("Services/ftp");
  68. if(!port)port = 21;
  69.  
  70. if(!get_port_state(port)) exit(0);
  71.  
  72. banner = get_ftp_banner(port: port);
  73. if(banner) {
  74.     if(egrep(pattern:"^220.*PlatinumFTPserver V1\.0\.[0-7][^0-9].*$",string:banner)) {
  75.          
  76.           security_hole(port);
  77.        }
  78. }
  79.